home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / virtualFolderProperties.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-02-01  |  4.7 KB  |  118 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Thunderbird RSS Integration code.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - The Mozilla Foundation.
  19.    - Portions created by the Initial Developer are Copyright (C) 2005
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -   David Bienvenu <bienvenu@nventure.com>
  24.    -   Scott MacGregor <mscott@mozilla.org>
  25.    -
  26.    - Alternatively, the contents of this file may be used under the terms of
  27.    - either of the GNU General Public License Version 2 or later (the "GPL"),
  28.    - or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.    - in which case the provisions of the GPL or the LGPL are applicable instead
  30.    - of those above. If you wish to allow use of your version of this file only
  31.    - under the terms of either the GPL or the LGPL, and not to allow others to
  32.    - use your version of this file under the terms of the MPL, indicate your
  33.    - decision by deleting the provisions above and replace them with the notice
  34.    - and other provisions required by the GPL or the LGPL. If you do not delete
  35.    - the provisions above, a recipient may use your version of this file under
  36.    - the terms of any one of the MPL, the GPL or the LGPL.
  37.    -
  38.    - ***** END LICENSE BLOCK *****
  39.    -->
  40.  
  41. <?xml-stylesheet href="chrome://messenger/skin/dialogs.css" type="text/css"?>
  42. <?xml-stylesheet href="chrome://messenger/skin/searchDialog.css" type="text/css"?>
  43.  
  44. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  45. <?xul-overlay href="chrome://messenger/content/msgFolderPickerOverlay.xul"?>
  46. <?xul-overlay href="chrome://messenger/content/searchTermOverlay.xul"?>
  47.  
  48. <!DOCTYPE window SYSTEM "chrome://messenger/locale/virtualFolderProperties.dtd">
  49.  
  50. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  51.         xmlns:nc="http://home.netscape.com/NC-rdf#"
  52.         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  53.         id="virtualFolderPropertiesDialog"
  54.         title="&virtualFolderProperties.title;"
  55.         onload="onLoad();"
  56.         buttons="accept,cancel"
  57.         style="width: 50em; height: 28em;"
  58.           ondialogaccept="return onOK();">
  59.  
  60.   <stringbundleset id="stringbundleset">
  61.     <stringbundle id="bundle_search"    src="chrome://messenger/locale/search.properties"/>
  62.     <stringbundle id="bundle_messenger" src="chrome://messenger/locale/messenger.properties"/>
  63.   </stringbundleset>
  64.  
  65.   <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  66.   <script type="application/x-javascript" src="chrome://messenger/content/mailCommands.js"/>
  67.   <script type="application/x-javascript" src="chrome://messenger/content/commandglue.js"/>
  68.   <script type="application/x-javascript" src="chrome://messenger/content/widgetglue.js"/>
  69.   <script type="application/x-javascript" src="chrome://messenger/content/virtualFolderProperties.js"/>
  70.  
  71.   <keyset id="dialogKeys"/>
  72.    
  73.   <grid>
  74.     <columns>
  75.       <column/>
  76.       <column flex="1"/>
  77.       <column flex="2"/>
  78.     </columns>
  79.  
  80.     <rows>
  81.       <row>
  82.         <label value="&name.label;" accesskey="&name.accesskey;" control="name"/>
  83.         <textbox tabindex="0" id="name" oninput="doEnabling();"/>
  84.         <spring/>
  85.       </row>
  86.  
  87.       <row align="center"  id="chooseFolderLocationRow">
  88.         <label value="&description.label;" accesskey="&description.accesskey;" control="msgNewFolderPicker"/>
  89.         <menulist id="msgNewFolderPicker" flex="1" oncommand="doEnabling();"/>
  90.         <spring/>
  91.       </row>
  92.  
  93.       <row align="center">
  94.         <label value="&folderSelectionCaption.label;"/>
  95.         <hbox>
  96.           <spacer flex="1"/>
  97.           <button label="&chooseFoldersButton.label;" oncommand="chooseFoldersToSearch();" 
  98.                   accesskey="&chooseFoldersButton.accesskey;"/>
  99.         </hbox>
  100.       </row>
  101.     </rows>
  102.   </grid>
  103.  
  104.   <hbox flex="1">
  105.     <checkbox id="searchOnline" label="&searchOnline.label;" accesskey="&searchOnline.accesskey;"/>
  106.   </hbox>
  107.  
  108.   <separator class="thin"/>
  109.  
  110.   <vbox flex="2">
  111.     <label value="&searchTermCaption.label;"/>
  112.     <hbox flex="1">
  113.       <vbox id="searchTermListBox" flex="2"/>
  114.     </hbox>
  115.   </vbox>
  116.  
  117. </dialog>
  118.